home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 11 / CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso / cucd / programming / amoslist / amoslist.mar / 000053_amos-request@svcs1.digex.net_Wed Mar 5 19:53:04 1997.msg < prev    next >
Text File  |  1997-04-01  |  2KB  |  60 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail2.access.digex.net (8.8.5/8.8.5) with ESMTP id TAA19676
  3.     for <mcox@access.digex.net>; Wed, 5 Mar 1997 19:53:02 -0500 (EST)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id QAA19492
  6.     for amos-out; Wed, 5 Mar 1997 16:53:40 -0500 (EST)
  7. Received: from mail2.access.digex.net (mail2.access.digex.net [205.197.247.3])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id QAA19489
  9.     for <amos-list@svcs1.digex.net>; Wed, 5 Mar 1997 16:53:39 -0500 (EST)
  10. Received: from cheetah.spots.ab.ca (root@cheetah.spots.ab.ca [204.191.210.12])
  11.     by mail2.access.digex.net (8.8.5/8.8.5) with SMTP id QAA05513
  12.     for <amos-list@access.digex.net>; Wed, 5 Mar 1997 16:53:37 -0500 (EST)
  13. Received: from dcousins (pm104.spots.ab.ca [204.191.210.24]) by cheetah.spots.ab.ca (8.6.12/8.6.12) with ESMTP id OAA20737 for <amos-list@access.digex.net>; Wed, 5 Mar 1997 14:53:14 -0700
  14. Message-Id: <199703052153.OAA20737@cheetah.spots.ab.ca>
  15. From: "D. Cousins" <dcousins@spots.ab.ca>
  16. To: <amos-list@access.digex.net>
  17. Subject: Re: New AMOS type language for the future
  18. Date: Wed, 5 Mar 1997 13:29:39 -0800
  19. X-MSMail-Priority: Normal
  20. X-Priority: 3
  21. X-Mailer: Microsoft Internet Mail 4.70.1155
  22. MIME-Version: 1.0
  23. Content-Type: text/plain; charset=ISO-8859-1
  24. Content-Transfer-Encoding: 8bit
  25. Status: RO
  26. X-Status: 
  27.  
  28. From: Joona I Palaste <palaste@cc.helsinki.fi>
  29. Date: March 5, 1997 6:24 AM
  30.  
  31. > On Tue, 9 Jan 2007, Nikola Smolenski wrote:
  32. >
  33. > > On 04-Mar-97, Ben Wyatt wrote:
  34. > > >fold up other structures such as loops.
  35. > > 
  36. > > Sounds interesting, but I don't know how would you do it.
  37. > Type a loop, such as:
  38. >
  39. > For I=1 to 10
  40. >    Print "M�rkh� bhavatha"
  41. > Next I
  42. >
  43. > and then go to the first line, press F9, and all you can see is:
  44. >
  45. > For I=1 to 10
  46.  
  47. > even though all the code is still there. How else would you fold a loop?
  48.  
  49.     Actually, you should have:
  50.  
  51. For I=1 To 10  {Folded loop}
  52.  
  53.     So that when you are viewing code, you know that it's folded.  Better yet,
  54. use the elipses:
  55.  
  56. For I=1 To 10  {Print... Folded Loop}
  57.  
  58.     Dave.
  59.